home *** CD-ROM | disk | FTP | other *** search
- From: alhen_ms@msn.com (Alberto Henriquez)
- Subject: RE: G++ math question
- Date: 6 Apr 96 07:12:52 -0800
- References: <00001a81+0000b148@msn.com>
- Message-ID: <00001a81+0000b168@msn.com>
- Path: news.msn.com!msn.com
- Newsgroups: comp.lang.c++
- Organization: The Microsoft Network (msn.com)
-
- Hi Roger,
-
- You'll need to link the math libs with your app.
-
- example (math library is called libm.a) g++ -omyapp myapp.cpp -lm
-
- The first switch is character "o" the second switch is lowercase "L".
-
- GoodLuck,
- Al
-